﻿/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI",sans-serif;
}

html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    background: linear-gradient(135deg,#f5f7fa,#dcecf5);
}

img {
    max-width: 100%;
    display: block;
}

.main-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}*/

/* ================= HEADER ================= */

/*.header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 5px 30px;
    flex-wrap: wrap;
}

.logo {
    width: 70px;
}

.portal-title {
    font-size: clamp(24px,2.5vw,38px);
    font-weight: 700;
    color: #173848;
}*/

/* ================= CONTENT ================= */

/*.content-wrapper {
    flex: 1;
    display: flex;
    gap: 25px;
    padding: 10px 30px 15px;
    align-items: stretch;
    background: #17a9c21a;
}*/

/* ================= LEFT SECTION ================= */

/*.right-section {
    flex: 1 1 62%;
    display: flex;
    flex-direction: column;
}*/

/* ================= SLIDER ================= */

/*.slider-wrapper {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #ddd;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

    .slider-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;
    transition: 0.3s;
}

    .slider-btn:hover {
        background: rgba(0,0,0,0.7);
    }

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .dots span {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 2px solid #fff;
    }

        .dots span.active {
            background: #fff;
        }*/

/* ================= COMPANY INFO ================= */

/*.bottom-info {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.info-col {
    flex: 1;
    min-width: 220px;
}

.product-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.turbo-img {
    width: 100%;
    max-width: 180px;
}

.tel-logo-text {
    width: 180px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 20px;
    font-weight: 700;
    color: #173848;
    line-height: 1.4;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #222;
}

    .detail-row:last-child {
        margin-bottom: 0;
    }

    .detail-row i {
        color: #173848;
        margin-top: 4px;
        width: 18px;
        font-size: 17px;
    }

    .detail-row strong {
        font-size: 16px;
    }

    .detail-row p {
        margin-top: 4px;
        line-height: 1.5;
        font-size: 15px;
    }*/

/* ================= LOGIN ================= */

/*.left-section {
    flex: 1 1 38%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    padding: 40px;
    background: linear-gradient(135deg,#00b8d9,#08a7c8,#0098bf);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.form-box {
    width: 100%;
    transition: 0.4s;
}

.hidden {
    display: none;
}

.login-icon {
    text-align: center;
    margin-bottom: 18px;
}

    .login-icon i {
        font-size: 65px;
    }

.login-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 22px;
}

    .form-group label {
        display: block;
        margin-bottom: 10px;
        font-size: 17px;
        font-weight: 600;
    }

.input-box {
    position: relative;
}

    .input-box input {
        width: 100%;
        height: 58px;
        border: none;
        outline: none;
        border-radius: 8px;
        padding: 0 18px;
        font-size: 16px;
        color: #333;
    }

        .input-box input::placeholder {
            color: #999;
        }

.eye-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    cursor: pointer;
}

.forgot {
    text-align: right;
    margin-bottom: 30px;
}

    .forgot a {
        color: #fff;
        text-decoration: none;
        font-size: 15px;
        cursor: pointer;
    }

        .forgot a:hover {
            text-decoration: underline;
        }

.btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.login-btn {
    flex: 1;
    min-width: 120px;
    height: 60px;
    border: none;
    border-radius: 8px;
    background: #fff;
    color: #173848;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

    .login-btn:hover {
        background: #f1f1f1;
        transform: translateY(-2px);
    }

.back-btn {
    background: #173848;
    color: #fff;
}

    .back-btn:hover {
        background: #102935;
    }*/

/* ================= FOOTER ================= */

/*.footer-shape {
    width: 100%;
    background: #1f4150;
    padding: 14px 20px;
}

.footer-text {
    color: #fff;
    font-size: 14px;
    text-align: right;
}*/

/* ================= LARGE LAPTOP ================= */

/*@media (max-width:1440px) {

    .slider-wrapper {
        height: 470px;
    }

    .login-card {
        padding: 35px;
    }
}*/

/* ================= LAPTOP ================= */

/*@media (max-width:1200px) {

    .content-wrapper {
        gap: 20px;
    }

    .slider-wrapper {
        height: 420px;
    }

    .login-card {
        padding: 30px;
    }

    .tagline {
        font-size: 18px;
    }
}*/

/* ================= TABLET ================= */

/*@media (max-width:992px) {

    .content-wrapper {
        flex-direction: column;
    }

    .right-section,
    .left-section {
        width: 100%;
    }

    .slider-wrapper {
        height: 380px;
    }

    .bottom-info {
        flex-wrap: wrap;
    }

    .login-card {
        max-width: 100%;
    }
}*/

/* ================= MOBILE ================= */

/*@media (max-width:576px) {

    .header {
        justify-content: center;
        text-align: center;
        padding: 15px;
    }

    .logo {
        width: 55px;
    }

    .portal-title {
        font-size: 22px;
    }

    .content-wrapper {
        padding: 12px;
        gap: 15px;
    }

    .slider-wrapper {
        height: 240px;
        border-radius: 12px;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .bottom-info {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .info-col {
        min-width: 100%;
    }

    .product-col,
    .center-col,
    .contact-col {
        align-items: center;
        text-align: center;
    }

    .detail-row {
        justify-content: center;
    }

    .turbo-img {
        max-width: 120px;
    }

    .tel-logo-text {
        width: 140px;
    }

    .tagline {
        font-size: 15px;
    }

    .login-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .login-icon i {
        font-size: 48px;
    }

    .login-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .form-group label {
        font-size: 14px;
    }

    .input-box input {
        height: 48px;
        font-size: 14px;
    }

    .login-btn {
        height: 50px;
        font-size: 16px;
    }

    .btn-group {
        flex-direction: column;
    }

    .footer-text {
        text-align: center;
        font-size: 12px;
    }
}

@media (max-width:1285px) {

    .bottom-info {
        flex-wrap: nowrap;
        gap: 12px;
        padding: 18px;
    }

    .turbo-img {
        max-width: 140px;
    }

    .tel-logo-text {
        width: 140px;
    }

    .tagline {
        font-size: 16px;
    }

    .detail-row strong {
        font-size: 14px;
    }

    .detail-row p,
    .detail-row div {
        font-size: 13px;
    }
}*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI",sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: linear-gradient(135deg,#f5f7fa,#dcecf5);
}

img {
    max-width: 100%;
    display: block;
}

.main-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ================= HEADER ================= */

.header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 22px;
    flex-shrink: 0;
    background: #fff;
}

.logo {
    width: 60px;
}

.portal-title {
    font-size: clamp(22px,2vw,34px);
    font-weight: 700;
    color: #173848;
}

/* ================= CONTENT ================= */

.content-wrapper {
    flex: 1;
    display: flex;
    gap: 18px;
    padding: 12px 22px;
    overflow: hidden;
    background: #17a9c21a;
}

/* ================= LEFT SECTION ================= */

.right-section {
    flex: 1 1 62%;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* ================= SLIDER ================= */

.slider-wrapper {
    flex: 1;
    min-height: 0;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #ddd;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

    .slider-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;
    transition: 0.3s;
}

    .slider-btn:hover {
        background: rgba(0,0,0,0.7);
    }

.prev {
    left: 14px;
}

.next {
    right: 14px;
}

.dots {
    position: absolute;
    bottom: 14px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

    .dots span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid #fff;
    }

        .dots span.active {
            background: #fff;
        }

/* ================= COMPANY INFO ================= */

.bottom-info {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    flex-shrink: 0;
}

.info-col {
    flex: 1;
    min-width: 0;
}

.product-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.turbo-img {
    width: 100%;
    max-width: 135px;
}

.tel-logo-text {
    width: 150px;
    margin-bottom: 8px;
}

.tagline {
    font-size: 16px;
    font-weight: 700;
    color: #173848;
    line-height: 1.4;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #222;
}

    .detail-row:last-child {
        margin-bottom: 0;
    }

    .detail-row i {
        color: #173848;
        margin-top: 3px;
        width: 16px;
        font-size: 15px;
    }

    .detail-row strong {
        font-size: 14px;
    }

    .detail-row p,
    .detail-row div {
        font-size: 13px;
        line-height: 1.4;
    }

/* ================= LOGIN SECTION ================= */

.left-section {
    flex: 1 1 38%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
}

.login-card {
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    padding: 30px;
    background: linear-gradient(135deg, #1CB5E0 0%, #000851 100%);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    color: #fff;
}

.form-box {
    width: 100%;
    transition: 0.4s;
}

.hidden {
    display: none;
}

.login-icon {
    text-align: center;
    margin-bottom: 14px;
}

    .login-icon i {
        font-size: 58px;
    }

.login-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 16px;
        font-weight: 600;
    }

.input-box {
    position: relative;
}

    .input-box input {
        width: 100%;
        height: 52px;
        border: none;
        outline: none;
        border-radius: 8px;
        padding: 0 16px;
        font-size: 15px;
        color: #333;
    }

        .input-box input::placeholder {
            color: #999;
        }

.eye-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    cursor: pointer;
}

.forgot {
    text-align: right;
    margin-bottom: 24px;
}

    .forgot a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        cursor: pointer;
    }

        .forgot a:hover {
            text-decoration: underline;
        }

.btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.login-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 8px;
    background: #fff;
    color: #173848;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

    .login-btn:hover {
        background: #f1f1f1;
    }

.back-btn {
    background: #173848;
    color: #fff;
}

    .back-btn:hover {
        background: #102935;
    }

/* ================= FOOTER ================= */

.footer-shape {
    width: 100%;
    background: #1f4150;
    padding: 10px 20px;
    flex-shrink: 0;
}

.footer-text {
    color: #fff;
    font-size: 13px;
    text-align: right;
}

/* ================= LARGE SYSTEM ================= */

@media (max-width:1600px) {

    .slider-wrapper {
        min-height: 420px;
    }
}

/* ================= LAPTOP ================= */

@media (max-width:1366px) {

    .content-wrapper {
        gap: 15px;
    }

    .slider-wrapper {
        min-height: 340px;
    }

    .login-card {
        padding: 24px;
    }

    .login-title {
        font-size: 24px;
    }

    .input-box input {
        height: 48px;
    }

    .login-btn {
        height: 50px;
        font-size: 17px;
    }

    .bottom-info {
        padding: 14px;
    }

    .tagline {
        font-size: 15px;
    }
}

/* ================= TABLET ================= */

@media (max-width:1180px) {

    html,
    body {
        overflow: auto;
    }

    .main-container {
        height: auto;
    }

    .content-wrapper {
        flex-direction: column;
        overflow: visible;
    }

    .right-section,
    .left-section {
        width: 100%;
    }

    .slider-wrapper {
        height: 420px;
    }

    .bottom-info {
        flex-wrap: wrap;
    }

    .login-card {
        max-width: 100%;
    }
}

/* ================= MOBILE ================= */

@media (max-width:576px) {

    html,
    body {
        overflow: auto;
    }

    .header {
        justify-content: center;
        text-align: center;
        padding: 14px;
    }

    .logo {
        width: 50px;
    }

    .portal-title {
        font-size: 22px;
    }

    .content-wrapper {
        padding: 12px;
        gap: 15px;
    }

    .slider-wrapper {
        height: 240px;
        border-radius: 12px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .bottom-info {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .info-col {
        width: 100%;
    }

    .product-col,
    .center-col,
    .contact-col {
        align-items: center;
        text-align: center;
    }

    .detail-row {
        justify-content: center;
    }

    .login-card {
        padding: 20px;
        border-radius: 18px;
    }

    .login-icon i {
        font-size: 48px;
    }

    .login-title {
        font-size: 22px;
        margin-bottom: 22px;
    }

    .form-group label {
        font-size: 14px;
    }

    .input-box input {
        height: 46px;
        font-size: 14px;
    }

    .login-btn {
        height: 48px;
        font-size: 16px;
    }

    .btn-group {
        flex-direction: column;
    }

    .footer-text {
        text-align: center;
        font-size: 12px;
    }
}
